home *** CD-ROM | disk | FTP | other *** search
- #ifndef TRUE
- #define TRUE (1)
- #endif
- #ifndef FALSE
- #define FALSE (0)
- #endif
- #ifndef NULL
- #define NULL ((void *)0)
- #endif
-
- typedef unsigned char u_char;
- typedef unsigned short u_short;
- typedef unsigned int u_int;
- typedef unsigned long u_long;
-
- #include "../win/window.h"
-
- #define winCreate (*winfunc[0])
- #define winDestroy (*winfunc[1])
- #define winMap (*winfunc[2])
- #define winUnmap (*winfunc[3])
- #define winUpdate (*winfunc[4])
- #define winMove (*winfunc[5])
- #define winLower (*winfunc[6])
-
- extern int (**winfunc)();
-